/* Root colors */

*{
  margin: 0;
  padding: 0;
}

:root {
    --background:  linear-gradient(90deg, rgba(7,3,46,1) 5%, rgba(103,0,0,1) 51%, rgba(16,61,70,1) 97%);
    --foreground: #1e1e1e;
    --card-background: #ffffff;
    --card-foreground: #1e1e1e;
    --popover-background: #ffffff;
    --popover-foreground: #1e1e1e;
    --primary: #1e1e1e;
    --primary-foreground: #f0f0f0;
    --secondary: #e5e5e5;
    --secondary-foreground: #1e1e1e;
    --muted: #e5e5e5;
    --muted-foreground: #606060;
    --accent: #e5e5e5;
    --accent-foreground: #1e1e1e;
    --destructive: #ffd700;
    --destructive-foreground: #ffffff;
    --border: #cccccc;
    --input: #cccccc;
    --ring: #1e1e1e;
    --radius1: 1.5rem;
    --radius:0.5rem;
  }
  .space_margin{
    margin: auto;
    width: 90vw;
  }
  .divider_line{
    border-top: solid 1px var(--muted-foreground);
     
  }

  body {
    font-family: Arial, sans-serif;
    background: var(--background);
    color: var(--foreground);
    margin: 0;
    padding: 0;
    /* background: rgb(69,68,97); */
    
  }
  
  /* .container {
    margin: auto;
    width: 90vw;
  }
   */
   
  .header {
    background: black;
    position: sticky;
    top: 0;
  
  }

  .header_content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
  }  
  .title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-foreground);
  }

  .search_back{
    border: none;
    background: var(--muted-foreground);
    padding: 0.7rem 1rem;
    border-radius: var(--radius1);
    width: 50vw;
    margin: auto;
    display: flex;
    color: var(--popover-background);
    justify-content: space-between;
  }

  .search_input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    color: var(--accent);
    padding: 0rem 0.5rem;
    outline:none;
  }

  .search_input::placeholder{
    color: var(--accent);
  }
  
  .premium-button {
    background-color: var(--primary);
    color: goldenrod;
    padding: 1rem 1rem;
    border: none;
    border-radius: var(--radius1);
    cursor: pointer;

  }

  .user_act{
    width: 15%;
    display: flex;
    align-items: center;
    justify-content: space-between;
   
  }

  .user_act_circle{
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .user_act i{
    color: var(--muted-foreground);
    font-weight: 800;
    
  }
  
  .nav {
    display: flex;
    gap: 1rem;
    padding: 0.5rem 0;
  }
  
  .nav-link {
    color: var(--muted);
    text-decoration: none;
  }
  
  .nav-link:hover {
    color: var(--muted-foreground);
  }
  
  .section {
    margin-top: 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
    font-weight: semi-bold;
    color: var(--primary-foreground);
  }
  
  .button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .button {
    background-color: var(--muted-foreground);
    color: var(--primary-foreground);
    padding: 0.5rem 1rem;
    border: none;
    border-radius: var(--radius);
    text-decoration: none;
  }
  
  .ad {
    background-color: var(--muted);
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius);
  }
  
  .ad-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .ad-image {
    border-radius: 50%;
    margin-right: 1rem;
  }
  
  .ad-text {
    margin-right: 1rem;
  }
  
  .ad-title {
    font-weight: bold;
  }
  
  .ad-description {
    color: var(--muted-foreground);
  }
  
  .ad-button {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.5rem 1rem;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .card {
    background-color: var(--card-background);
    padding: 1rem;
    border-radius: var(--radius);
  }
  
  .card-image {
    width: 100%;
    border-radius: var(--radius);
  }
  
  .card-title {
    font-weight: bold;
    margin-top: 0.5rem;
  }
  
  .card-description {
    color: var(--muted-foreground);
  }
  